home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / programming / nnn1.35 / src / nettransfunc.c < prev    next >
C/C++ Source or Header  |  1995-03-20  |  180b  |  14 lines

  1. /*
  2.  *  $Id: NetTransFunc.c 1.3 1995/03/20 23:38:34 daltern Exp $
  3.  */
  4.  
  5. #include "Neural.h"
  6.  
  7. float NetTransFunc( float x, float gain )
  8.  
  9.  {
  10.  
  11.     return (float)(1/( 1+exp(-x*gain)));
  12.  
  13.  }
  14.